Welcome![Sign In][Sign Up]
Location:
Search - javascript 3D

Search list

[Other resource3Dcate

Description: 三维报表,VML javascript生成3D图表
Platform: | Size: 4211 | Author: killer | Hits:

[Other resource3dxc

Description: 用javaScript编写的3D动态相册.
Platform: | Size: 2861 | Author: gouliming | Hits:

[BooksAndroid基础教程

Description: 第一部分 Android简介 第1章 快速入门.............. 3 1.1 安装工具...... 3 1.1.1 Java 5.0+.... 3 1.1.2 Eclipse.......... 4 1.1.3 Android....... 4 1.1.4 Eclipse插件..................... 5 1.2 创建第一个程序.... 7 1.3 在模拟器上运行程序............... 8 1.4 在手机上运行程序..................... 9 1.5 快速阅读指南.......... 9 第2章 基本概念........... 11 2.1 Android的系统架构................ 11 2.1.1 Linux内核..................... 11 2.1.2 本机库...... 12 2.1.3 Android运行时......... 13 2.1.4 应用程序框架........... 14 2.1.5 应用程序 15 2.2 它还活着... 15 2.2.1 进程不等于应用程序......... 16 2.2.2 应用程序生命周期............... 17 2.3 构建块......... 19 2.3.1 活动............ 19 2.3.2 意图............ 19 2.3.3 服务............ 19 2.3.4 内容提供者................. 19 2.4 使用资源... 20 2.5 安全性......... 20 2.6 快速阅读指南....... 21 第二部分 Android基础知识 第3章 设计用户界面..................... 25 3.1 数独游戏简介....... 25 3.2 声明性设计............. 26 3.3 创建启动界面....... 27 3.4 使用替代资源....... 34 3.5 实现About对话框..................... 37 3.6 应用主题... 41 3.7 添加菜单... 43 3.8 添加设置... 45 3.9 开始新游戏............. 47 3.10 利用日志消息调试程序... 48 3.11 利用调试器调试程序......... 50 3.12 退出游戏 50 3.13 快速阅读指南.... 50 第4章 绘制2D图形...................... 53 4.1 Android图形基础...................... 53 4.1.1 Color类... 53 4.1.2 Paint类... 54 4.1.3 Canvas类 55 4.1.4 Path类...... 55 4.1.5 Drawable类................. 56 4.2 在Sudoku程序中添加图形............... 58 4.2.1 开始游戏 58 4.2.2 定义Game类................. 58 4.2.3 定义PuzzleView类............... 60 4.2.4 绘制游戏盘面........... 61 4.2.5 绘制数字 63 4.3 处理输入... 65 4.3.1 定义和更新选定区域......... 66 4.3.2 输入数字 68 4.3.3 增加提示 69 4.3.4 抖动屏幕 70 4.4 其他问题... 71 4.4.1 创建软键盘................. 71 4.4.2 实现游戏逻辑........... 76 4.4.3 其他功能 78 4.5 更多改进... 80 4.6 快速阅读指南....... 81 第5章 多媒体. 83 5.1 播放音频... 83 5.2 播放视频... 88 5.3 为数独游戏配上音乐............ 92 5.4 快速阅读指南....... 94 第6章 存储本地数据..................... 95 6.1 为数独游戏添加选项............ 95 6.2 继续玩前一个游戏.................. 97 6.3 记住当前位置....... 99 6.4 访问内部文件系统............... 100 6.5 访问SD卡.............. 101 6.6 快速阅读指南.... 103 第三部分 高级主题 第7章 互联的世界. 107 7.1 通过意图实现浏览............... 108 7.2 利用视图打开网页............... 111 7.3 JavaScript与Java通信.......... 115 7.4 使用Web服务..... 121 7.5 快速阅读指南.... 131 第8章 定位与环境感知........... 133 8.1 位置,位置,位置............... 133 8.1.1 我在哪里.................... 135 8.1.2 更新位置.................... 137 8.1.3 模拟说明.................... 138 8.2 充分利用传感器..................... 139 8.2.1 了解传感器.............. 139 8.2.2 解析传感器的读数............ 140 8.2.3 模拟说明.................... 140 8.3 地图功能 141 8.3.1 嵌入MapView........... 142 8.3.2 准备就绪.................... 145 8.3.3 模拟说明.................... 146 8.4 快速阅读指南.... 147 第9章 SQL实战...... 149 9.1 SQLite简介........... 149 9.2 SQL基础 150 9.2.1 DDL语句.................... 151 9.2.2 修改语句.................... 151 9.2.3 查询语句.................... 151 9.3 你好,数据库.... 152 9.3.1 使用SQliteOpenHelper 153 9.3.2 定义主程序.............. 155 9.3.3 添加一行.................... 156 9.3.4 运行一个查询........ 157 9.3.5 显示查询结果........ 158 9.4 数据绑定 159 9.5 使用ContentProvider...... 162 9.5.1 更改主程序.............. 164 9.5.2 添加一行.................... 164 9.5.3 运行一个查询........ 165 9.6 实现ContentProvider...... 165 9.7 快速阅读指南.... 166 第10章 利用OpenGL实现3D图形.............. 169 10.1 理解3D图形..... 169 10.2 OpenGL简介.... 170 10.3 构建一个OpenGL程序... 171 10.4 管理线程............. 173 10.5 构建一个模型. 178 10.6 光线、相机…….................. 181 10.7 动作......... 183 10.8 应用纹理............. 184 10.9 透明效果............. 187 10.10 快速阅读指南..................... 189 第四部分 附录 附录A Java与Android语言及其API.......... 193 附录B 参考书目........ 197
Platform: | Size: 13578541 | Author: pumaxy | Hits:

[WEB Codearray

Description: JavaScript Canvas 3D
Platform: | Size: 10240 | Author: eventssss | Hits:

[JSP/Java3dLable

Description: 用javascript实现一个很好看的3D效果,来自CSDN-Using javascript to achieve a good look at the 3D effect, from CSDN
Platform: | Size: 49152 | Author: olysess | Hits:

[JSP/Javaluanxian

Description: 超平滑的图片滚动轮显,当前张放大,JavaScript版,貌似超不错的滚动效果,用鼠标点击左右的控制按钮也可控制图片滚动,没有滚动到的图片呈缩略图状态,滚动到当前的时候是最大化的,有点3D的味道。 -Ultra-smooth scroll wheel was a picture, to enlarge the current sheets, JavaScript version, looks like a good roll over effect, with the mouse to click around the control buttons can also control the picture scroll, scroll to the picture was not state of the thumbnail, scroll to the current time is maximized, a little taste of 3D.
Platform: | Size: 40960 | Author: lisa | Hits:

[JSP/Javashui

Description: WEB 3D展示,shui.wrl中是VRML和JavaScript实现流水效果,可通过3D浏览器进行网上3D展示-WEB 3D display, shui.wrl is VRML and JavaScript to achieve water effects, 3D browser can display Web 3D
Platform: | Size: 1024 | Author: 樊晓东 | Hits:

[JSP/Javaqiu

Description: qiu.rar中是使用VRML和JavaScript实现WEB 3D的三维球体运动控制程序-qiu.rar VRML and JavaScript is used to achieve three-dimensional sphere WEB 3D motion control program
Platform: | Size: 1024 | Author: 樊晓东 | Hits:

[JSP/Javadianji

Description: dianji.rar是采用vrml和JavaScript实现的捕获鼠标事件,点击茶壶盖子可以打开的网上3D程序-dianji.rar vrml and JavaScript is used to achieve the capture mouse events, click on the teapot lid can be opened online 3D program
Platform: | Size: 684032 | Author: 樊晓东 | Hits:

[Multimedia Develop3dshipin

Description: 3dshipin.rar是采用vrml和JavaScript实现的视频播放器,可在网上3D环境中加载视频-3dshipin.rar is implemented in JavaScript using vrml and video player, 3D environment can be loaded in the online video
Platform: | Size: 681984 | Author: 樊晓东 | Hits:

[JSP/Javaliushui

Description: liushui.rar是采用vrml和JavaScript实现了一个采用单张图片的uv变换形成流水的网上3D程序-liushui.rar vrml and JavaScript is used to achieve a transformation using a single picture of the formation of water-line uv 3D program
Platform: | Size: 24576 | Author: 樊晓东 | Hits:

[JSP/Javayinpin

Description: yinpin.rar是采用vrml和JavaScript实现的3D音源播放,模拟现实的随着音源远近声音大小变化的网上3D程序-yinpin.rar vrml and JavaScript is used to achieve 3D audio playback, analog sound source distance with the voice of real change in the size of the online 3D program
Platform: | Size: 765952 | Author: 樊晓东 | Hits:

[JSP/Javarolling

Description: javascript做出来的3D图片浏览的效果,震撼人心,可以作为PPT播放-javascript out of the 3D image browser to do the effect of stirring, you can play as PPT
Platform: | Size: 22528 | Author: sasa | Hits:

[JSP/Javadeanm-pre3d-5453b65

Description: Pre3d是一个JavaScript库,以一个<canvas>元素将项目绘制成2D和3D场景。 -Pre3d is a JavaScript library, which will project a 3d scene into 2d, and draw it to a <canvas> element. The API is immediate mode, with the basic primitive of a Shape, consisting of QuadFace quad and/or triangle faces. The library is designed to be low-level and direct, there is no retrained or scene graph API.
Platform: | Size: 67584 | Author: wangbo | Hits:

[JSP/Javahtml_3DJavaScript

Description: 网页实现的3DJavaScript源码,不可多得的资料-3D JavaScript, implemented on explorer.
Platform: | Size: 54754304 | Author: noex | Hits:

[JSP/JavaImage3D

Description: 一个javascript做的3D图形,下载后只要包含入你的文件中就可以了-this is javascript file
Platform: | Size: 16384 | Author: 杨帆 | Hits:

[3D GraphicTHREE.JS开发指南

Description: The JavaScript 3D Library for WebGL - Second Edition,作者Jos Dirksen 全面讲解Three.js开发的实用指南,循序渐进讲解Three.js的各种功能。 通过大量交互式实例,深入探索使用开源的Three.js库创建绚丽三维图形的实用方法和技巧(The JavaScript 3D Library for WebGL - Second Edition, author Jos Dirksen Comprehensive explain the practical guide of Three.js development, step by step to explain the various functions of Three.js. Through a large number of interactive examples, in-depth exploration of the use of open source Three.js library to create gorgeous 3D graphics practical methods and skills)
Platform: | Size: 42153984 | Author: August_7 | Hits:

[JSP/Java三维模型的加载与显示基础

Description: 三维模型的加载与显示基础,three.js(The loading and displaying foundation of the 3D model, three.js)
Platform: | Size: 1077248 | Author: sdzhihao | Hits:

[JSP/Java12965452

Description: jbuiler做的一鰆ava的3D演示系统,非常的好用!很好用()
Platform: | Size: 484352 | Author: jcdiyw | Hits:

[JSP/Javaindoor3D-master

Description: 非常用的基于threejs indoor3室内定位3D地图展示(threejs indoor3 3D map)
Platform: | Size: 235520 | Author: 塞外天人 | Hits:
« 1 2 34 »

CodeBus www.codebus.net